home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
vbmdixpl
/
about.frm
next >
Wrap
Text File
|
1995-05-07
|
2KB
|
70 lines
VERSION 2.00
Begin Form about
BorderStyle = 3 'Fixed Double
Caption = "About"
ClientHeight = 4365
ClientLeft = 2730
ClientTop = 1830
ClientWidth = 5700
Height = 4770
Left = 2670
LinkTopic = "Form2"
ScaleHeight = 4365
ScaleWidth = 5700
Top = 1485
Width = 5820
Begin PictureBox LogoPic
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 612
Left = 2520
ScaleHeight = 615
ScaleWidth = 735
TabIndex = 2
Top = 2400
Width = 732
End
Begin CommandButton OK
Caption = "OK"
Height = 372
Left = 2160
TabIndex = 1
Top = 3480
Width = 1452
End
Begin Label AppName
Alignment = 2 'Center
AutoSize = -1 'True
Caption = "AppName"
Height = 192
Left = 2400
TabIndex = 0
Top = 480
Width = 852
End
End
Sub Form_Load ()
' set caption
about.Caption = "About " + App.Title
' set Logo
about.LogoPic = MdiForm1.Icon
' Text
TheStr$ = App.Title + Chr(10) + Chr(10)
TheStr$ = TheStr$ + "Copyright <Your Company here> 1993 " + Chr(10) + Chr(10)
TheStr$ = TheStr$ + "If you like this sample, sent a postcard to :" + Chr(10) + Chr(10)
TheStr$ = TheStr$ + "Hans-Jochen Schmitt" + Chr(10)
TheStr$ = TheStr$ + "Paul-Wagner Str. 28" + Chr(10)
TheStr$ = TheStr$ + "6100 Darmstadt" + Chr(10)
TheStr$ = TheStr$ + "Germany" + Chr(10)
about.AppName = TheStr$
End Sub
Sub OK_Click ()
Unload about
End Sub